/* Base Scope */
.splicer-bat-scope {
    background: #080808;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.splicer-bat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 50px;
}

/* Heading Styling */
.splicer-bat-underlined {
    position: relative;
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    display: inline-block;
}

.splicer-bat-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #ffcc00;
}

.splicer-bat-underlined span {
    color: #ffcc00;
}

/* Hero Section */
.splicer-bat-hero {
    padding: clamp(80px, 12vh, 150px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('') center/cover;
}

.splicer-bat-label {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.splicer-bat-h1 {
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0;
}

.splicer-bat-h1 span {
    color: #ffcc00;
}

.splicer-bat-p {
    color: #ccc;
    max-width: 650px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Buttons */
.splicer-bat-btn-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.splicer-bat-btn-gold {
    background: #ffcc00;
    color: #000;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.splicer-bat-btn-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}

.splicer-bat-btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Split Section */
.splicer-bat-section {
    padding: 70px 0;
}

.splicer-bat-bg-dark {
    background: #030303;
}

.splicer-bat-split-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.splicer-bat-img-side img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #333;
}

/* Feature Grid */
.splicer-bat-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.splicer-bat-f-item {
    background: #111;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffcc00;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #222;
}

/* Cards Grid */
.splicer-bat-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.splicer-bat-info-card {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ffcc00;
}

.splicer-bat-accent {
    background: #ffcc00;
    color: #000;
    border-left: none;
}

.splicer-bat-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.splicer-bat-list {
    list-style: none;
    padding: 0;
}

.splicer-bat-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.splicer-bat-accent .splicer-bat-list li {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.splicer-bat-list li::before {
    content: '✔';
    color: inherit;
}

/* CTA Bar */
.splicer-bat-cta {
    background: #111;
    padding: 50px 0;
    border-top: 2px solid #ffcc00;
}

.splicer-bat-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.splicer-bat-cta-text h2 {
    margin: 0;
    font-size: 1.8rem;
}

.splicer-bat-cta-text p {
    margin: 5px 0 0;
    color: #ccc;
}

.splicer-bat-cta-btn {
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .splicer-bat-split-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .splicer-bat-hero {
        text-align: center;
    }

    .splicer-bat-hero-box,
    .splicer-bat-btn-row {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .splicer-bat-underlined::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .splicer-bat-feature-grid {
        justify-items: center;
    }

    .splicer-bat-cta-flex {
        justify-content: center;
        text-align: center;
    }

    .splicer-bat-img-side {
        order: -1;
    }
}

@media (max-width: 576px) {
    .splicer-bat-feature-grid {
        grid-template-columns: 1fr;
    }

    .splicer-bat-btn-gold,
    .splicer-bat-btn-white,
    .splicer-bat-cta-btn {
        width: 100%;
        text-align: center;
    }

    .splicer-bat-section {
        padding: 50px 0;
    }

    .splicer-bat-info-card {
        padding: 25px;
    }
}